TracingCompleteEvent

data class TracingCompleteEvent(dataLossOccurred: Boolean, stream: StreamHandle?, traceFormat: StreamFormat?, streamCompression: StreamCompression?) : Event

Signals that tracing is stopped and there is no trace buffers pending flush, all data were delivered via dataCollected events.

Constructors

TracingCompleteEvent
Link copied to clipboard
fun TracingCompleteEvent(dataLossOccurred: Boolean, stream: StreamHandle? = null, traceFormat: StreamFormat? = null, streamCompression: StreamCompression? = null)

Functions

domain
Link copied to clipboard
open override fun domain(): String
Returns domain name for which event was generated.
eventName
Link copied to clipboard
open override fun eventName(): String
Returns event name as described in protocol.

Properties

dataLossOccurred
Link copied to clipboard
val dataLossOccurred: Boolean
Indicates whether some trace data is known to have been lost, e.g.
stream
Link copied to clipboard
val stream: StreamHandle? = null
A handle of the stream that holds resulting trace data.
streamCompression
Link copied to clipboard
val streamCompression: StreamCompression? = null
Compression format of returned stream.
traceFormat
Link copied to clipboard
val traceFormat: StreamFormat? = null
Trace data format of returned stream.

Sources

jvm source
Link copied to clipboard